home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_glib / NEWS.{_8 < prev    next >
Text File  |  1999-09-17  |  9KB  |  220 lines

  1. Overview of Changes in GLib 1.2.3:
  2.  
  3. * Minor fixes.
  4.  
  5. Overview of Changes in GLib 1.2.2:
  6.  
  7. * Minor fixes.
  8.  
  9. Overview of Changes in GLib 1.2.1:
  10.  
  11. * g_realloc() fix for SunOS (please report further problems).
  12. * Continued the never ending fix vendetta regarding getpwuid(),
  13.   this time AIX has been the culprit.
  14. * Upgrade to libtool 1.2f
  15. * Miscellaneous other buglets fixed.
  16.  
  17. What's new in GLib 1.2.0 (since GLib 1.0.x):
  18.  
  19. * GLib is distributed seperatedly from Gtk+
  20. * Win32 Portability
  21. * Threading support
  22. * GModule mechanism (implemented in an extra library) which wraps dynamic
  23.   object code loading facilities in a portable manner
  24. * GIOChannel structure to encapsulate the IPC mechanism
  25. * GQuarks and datasets
  26. * GRelations for n-way mapping of certain data
  27. * An n-way tree implementation
  28. * GDate functionality for calendar date manipulations
  29. * GAllocator type and associated functions
  30. * Added generic callback maintenance functions (ghook)
  31. * Generic functions for TAB completions
  32. * Endian defines (G_*_ENDIAN)
  33. * g_log() mechanism for logging of messages at different log levels
  34. * Generic main-loop mechanism
  35. * New glib-config helper script
  36. * Many more API extensions
  37.  
  38. Overview of Changes in GLib 1.1.16:
  39.  
  40. * Allocate smaller pools of memory for glists, gslists, gnodes
  41. * Bug Fixes
  42.  
  43. Overview of Changes in GLib 1.1.15:
  44.  
  45. * HPUX 11 thread system detection should now work
  46. * Release the main loop lock around calls to prepare() and
  47.   check() so it is not held over user code
  48. * A few Win32 fixups
  49.  
  50. Overview of Changes in GLib 1.1.14:
  51.  
  52. * Check for dlsym() in system libraries and -dl
  53. * FreeBSD portability fixes
  54. * Random bug fixes and autoconf/automake changes
  55.  
  56. Overview of Changes in GLib 1.1.13:
  57.  
  58. * Removed alloca() based function and macro variants again.
  59. * Improved thread related configure tests.
  60. * GSource destruction fixups.
  61. * Fixed up idle function removal based on user_data pointer.
  62. * Advanced Win32 portability.
  63. * Enforced GSource's check(), prepare() and dispatch() constrains,
  64.   loop recursions may only happen from dispatch(), and check() as well
  65.   as prepare() are called while the main_loop lock is being held.
  66. * GLib development now requires GNU autoconf 2.13, GNU automake 1.4
  67.   and GNU libtool 1.2d.
  68. * Lots of random portability and bug fixes.
  69.  
  70. Overview of Changes in GLib 1.1.12:
  71.  
  72. * Added alloca functions/macros: g_strdup_a, g_strconcat3_a, g_alloca,
  73.   g_new_a, g_new0_a
  74. * New tests structure.  Type 'make check' on your system to run them.
  75. * Avoid unnecessary extra hook referencing in g_hook_list_marshal
  76.  
  77. Overview of Changes in GLib 1.1.11:
  78.  
  79. * provide defaults for POLL sysdefs
  80. * g_main_is_running: new function to check whether a main loop has been quitted
  81. * a few other enhancement/fixes
  82.  
  83. Overview of Changes in GLib 1.1.9:
  84.  
  85. * Check for pthread_attr_init in all cases, Digital Unix 4 requires this
  86. * For G_LOCK_DECLARE_*, if !G_THREADS_ENABLED, eat trailing semicolon better
  87. * Changed g_main_poll_(add|remove) to g_main_(add|remove)_poll
  88.  
  89. Overview of Changes in GLib 1.1.8:
  90.  
  91. * Added threading support
  92.   - The ability to specify a set of functions to be used for
  93.     locking at runtime.
  94.   - Default implementations of locking functions for pthreads,
  95.     Solaris threads, and (experimentally) NSPR.
  96.   - All static variables should now properly locked.
  97.   - Enhancements to the generic main-loop mechanism to be thread-safe.
  98.     (It is used for the main-loop in GTK+ as of GTK+-1.1.8)
  99. * Portability fixes.
  100.  
  101. Overview of Changes in GLib 1.1.7:
  102.  
  103. * Removed multiple define from glibconfig.h
  104.  
  105. Overview of Changes in GLib 1.1.6:
  106.  
  107. * New GDate functionality for calendar date manipulations (g_date_*)
  108. * New GAllocator type and assocated functions
  109. * New functions g_slist_copy and g_list_copy to duplicate a list with all
  110.   its data pointers.
  111. * New function g_array_insert_vals and new macro g_array_insert_val to
  112.   insert elements at an arbitrary index
  113. * GAllocators used for glist, gslist, gnode node allocations
  114. * Incremental freezing in ghash
  115. * New function g_hook_list_marshal_check to eventually destroy hooks after
  116.   they got marshalled
  117. * Revised GIOChannel to provide generic virtual-function based interface
  118. * Added generic main-loop abstraction
  119. * Removed GListAllocator type and its g_*_allocator_*() function variants
  120. * Bug fixes
  121.  
  122. Overview of Changes in GLib 1.1.5:
  123.  
  124. * Win32 portability
  125. * GIOChannel structure to encapsulate the IPC mechanism 
  126. * Reimplemented endian stuff, using inline asm for x86
  127. * New functions:
  128.   - g_strescape: escapes backslashes
  129.   - g_path_is_absolute and g_path_skip_root
  130.   - g_getenv: expands environment variables that contain references 
  131.     to other environment variables
  132.   - g_scanner_sync_file_offset: rewind the filedescriptor to the current
  133.     buffer position and blow the file read ahead buffer
  134.   - g_array_remove_index: remove an entry, preserving the order
  135.   - g_array_remove_index_fast: remove an entry, order might be distorted
  136.   - g_ptr_array_remove: remove an entry, preserving the order 
  137.   - g_ptr_array_remove_fast: remove an entry, order might be distorted
  138.   - g_byte_array_remove_index: wrapper for g_array_remove_index
  139.   - g_byte_array_remove_index_fast: wrapper for g_array_remove_index_fast
  140.   - g_strncasecmp: modeled closely after g_strcasecmp
  141.   - g_list_sort, g_slist_sort: to merge sort GLists and GSLists
  142. * New macros:
  143.   - G_DIR_SEPARATOR, G_DIR_SEPARATOR_S: platform-dependant file name
  144.     syntax elements
  145.   - G_SEARCHPATH_SEPARATOR, G_SEARCHPATH_SEPARATOR_S: platform-dependant
  146.     search path syntax conventions
  147.   - G_STRUCT_OFFSET, G_STRUCT_MEMBER_P, G_STRUCT_MEMBER: for handling
  148.     structure fields through their offsets
  149. * Removed G_ENUM, G_FLAGS, G_NV, and G_SV macros
  150. * Bug fixes
  151.  
  152. Overview of Changes in GLib 1.1.4:
  153.  
  154. * Added generic callback maintenance functions (ghook)
  155. * New endian defines (G_*_ENDIAN)
  156. * New string join/split/free routines 
  157. * Fixes
  158.  
  159. Overview of Changes in GLib 1.1.3:
  160.  
  161. * New GModule mechanism (implemented in an extra library) which wraps dynamic
  162.   object code loading facilities in a portable manner.
  163. * glib-config features extra "glib" (old behaviour remains) and "gmodule"
  164.   (add libgmodule.so to the --libs output) arguments now. this can also
  165.   be specified as fourth argument to the AM_PATH_GLIB() macro.
  166. * Overhaul of the `inline' autoconfiguration stuff, so inlining should be
  167.   sufficiently supported on all systems that allow inlining now.
  168. * New g_log() mechanism for logging of messages at different log levels,
  169.   associated with certain log domains (define -DG_LOG_DOMAIN for your library).
  170. * New inline functions for bit masks tests.
  171. * GNode macros (and functions) now return the newly allocated node.
  172. * New macro G_VA_COPY() to work around va_list copying oddities on some
  173.   platforms. the non-static g_vsprintf() function vanished in favour of
  174.   a publically exported g_strdup_vprintf().
  175.   People that used the former g_vsprintf() would definitely want to read the
  176.   associated ChangeLog entries (grep for printf).
  177. * New utility functions:
  178.   g_strndup(), g_on_error_query(), g_on_error_stack_trace(), g_strdup_printf(),
  179.   g_strdup_vprintf(), g_printf_string_upper_bound(), g_spaced_primes_closest(),
  180.   g_strnfill(), g_memdup(). 
  181. * Overhaul of the array implementations, this contains some source incompatible
  182.   changes. Again, the ChangeLog is much more informative (grep for garray.c).
  183. * The internals of the g_dataset mechanism are now exported through the
  184.   new g_datalist_* API (this is also the underlying implementation for the
  185.   keyed data of GtkObjects).
  186. * New function g_atexit(), use of the ATEXIT() macro is discouraged.
  187. * Better configure checks for ansi compliance.
  188. * Libtool update to version 1.2b.
  189. * Lotsa bug fixes and cleanups as always ;)
  190.  
  191. Overview of Changes in GLib 1.1.2:
  192.  
  193. * Fixed packaging mistake which occured in 1.1.1
  194. * fix 64-bitness in g_prints in glibtest
  195.  
  196. What is new in GLib 1.1.1:
  197.  
  198. * An n-way tree implementation is provided now, based on the GNode structure.
  199. * Bugfix for pointer arrays.
  200.  
  201. What is new in GLib 1.1.0:
  202.  
  203. * GLib is distributed seperatedly from Gtk+ now and uses a sophisticated
  204.   shared library versioning scheme to deal with interface and binary
  205.   incompatibilities.
  206. * There is a glib-config helper script installed now.
  207. * Fixups all over the place.
  208. * gboolean is now a gint, not a gchar anymore.
  209. * API extensions for GList and GSList.
  210. * New g_str*() functions for simple string handling.
  211. * GScanner extensions for scope, warning and error handling.
  212. * Minor performance improvements for GMemChunks.
  213. * Implementations of GQuarks and datasets (similar to GtkObjects data
  214.   mechansim, but works for generic memory locations).
  215. * More convenience macros for GNU C function arguments.
  216. * Const correction all over the place, including a new pointer type
  217.   gconstpointer.
  218. * Generic functions for TAB completions.
  219. * GRelations for n-way mapping of certain data.
  220.